home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / degree2r / someus~1.txt < prev   
Text File  |  1999-07-26  |  1KB  |  33 lines

  1. FormatNumber(Expression, NumDigitsAfterDecimal, IncludeLeadingDigit, UserParensForNegativeNumbers, GroupDigits)
  2. Returns an expression formatted as a number. 
  3.  
  4. FormatPercent(Expression, NumDigitsAfterDecimal, IncludeLeadingDigit, UserParensForNegativeNumbers, GroupDigits) 
  5. Returns an expression formatted as a percentage (multiplied by 100) with a trailing % character.
  6.  
  7. FormatCurrency(Expression, NumDigitsAfterDecimal, IncludeLeadingDigit, UserParensForNegativeNumbers, GroupDigits)
  8. Returns an expression formatted as a currency value
  9.  
  10. FormatDateTime(Date, FormatType)
  11. Returns an expression formatted as a date or time. 
  12.  
  13. LTrim(string)
  14. Returns a string without leading spaces
  15.  
  16. RTrim(string)
  17. Returns a string without trailing spaces
  18.  
  19. Trim(string)
  20. Returns a string without leading and trailing spaces
  21.  
  22. Len(string)
  23. Returns the length of the specified string.
  24.  
  25. Left(string, length)
  26. Returns a specified number of characters from the left side of a string.
  27.  
  28. Right(string, length)
  29. Returns a specified number of characters from the right side of a string.
  30.  
  31. Mid(string, start, length)
  32. Returns a specified number of characters from a string.
  33.